home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 114 / macaddict114.cdr / Software / Audio & Music / WireTapPro.dmg / WireTap Pro 1.1.3 Installer.pkg / Contents / Resources / postupgrade < prev    next >
Encoding:
Text File  |  2005-10-14  |  377 b   |  16 lines

  1. #!/bin/sh
  2.  
  3. # -- Touch the /System/Library/Extensions dir, and load our kext
  4.  
  5. echo 'kext postupgrade script-----'
  6. touch /System/Library/Extensions
  7. #kextload /System/Library/Extensions/AmbrosiaAudioSupport.kext
  8. kextload -b "com.AmbrosiaSW.AudioSupport"
  9.  
  10. # -- Now launch the new WireTap Pro application
  11.  
  12. echo 'Launching WireTap Pro-----'
  13. open "/Applications/WireTap Pro/"
  14.  
  15. exit 0
  16.